- preamble
- Pointer to a buffer that represents the preamble to set.
- offset
- Value that represents the offset from the beginning of the buffer, from which this method should copy data.
- length
- Value that represents the length of the preamble, in bytes. The maximum length is 128 bytes.
Visual Basic (Declaration) | |
---|---|
Overloads Public Sub SetPreamble( _ ByVal preamble() As Byte, _ ByVal offset As Integer, _ ByVal length As Integer _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DicomDataSet Dim preamble() As Byte Dim offset As Integer Dim length As Integer instance.SetPreamble(preamble, offset, length) |
Parameters
- preamble
- Pointer to a buffer that represents the preamble to set.
- offset
- Value that represents the offset from the beginning of the buffer, from which this method should copy data.
- length
- Value that represents the length of the preamble, in bytes. The maximum length is 128 bytes.
For an example, refer to DicomDataSet.SetIntValue.
The standard length of the Preamble is 128 bytes.
If the value specified in length is > 128, then the Preamble will be set with the first 128 bytes of preamble. If length is < or equal 128, then the Preamble will be set with the entire contents of preamble.
To retrieve the contents of the Preamble, call the GetPreamble(IntPtr,Int32) method.
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)